home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / nohand11.zip / NOHANCHG.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-05-18  |  830b  |  77 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     STRING002 = "@X0A(@X0C@MINLEFT@@X0A min. left) (H)elp, Chat Command"
  25.     InputStr STRING002, STRING001, 10, 60, Mask_Ascii(), 4096 + 128
  26.     If (Upper(Left(STRING001, 2)) == "HA") Then
  27.         STRING002 = TokenStr()
  28.         KbdStuff "HA"
  29.     ElseIf (STRING001 == "") Then
  30.         KbdStuff Chr(13)
  31.     Else
  32.         KbdStuff STRING001 + TokenStr()
  33.     Endif
  34.     End
  35.  
  36. ;------------------------------------------------------------------------------
  37. ;
  38. ; Usage report (before postprocessing)
  39. ;
  40. ; ■ Statements used :
  41. ;
  42. ;    1       End
  43. ;    4       Goto 
  44. ;    2       Let 
  45. ;    2       If 
  46. ;    1       InputStr 
  47. ;    3       KbdStuff 
  48. ;
  49. ;
  50. ; ■ Functions used :
  51. ;
  52. ;    2       +
  53. ;    2       ==
  54. ;    2       !
  55. ;    1       Upper()
  56. ;    1       Left()
  57. ;    1       Chr()
  58. ;    1       Mask_Ascii()
  59. ;    2       TokenStr()
  60. ;
  61. ;------------------------------------------------------------------------------
  62. ;
  63. ; Analysis flags : No flag
  64. ;
  65. ;------------------------------------------------------------------------------
  66. ;
  67. ; Postprocessing report
  68. ;
  69. ;    0       For/Next
  70. ;    0       While/EndWhile
  71. ;    2       If/Then or If/Then/Else
  72. ;    0       Select Case
  73. ;
  74. ;------------------------------------------------------------------------------
  75. ;                 AEGiS Corp - Break the routines, code against the machines!
  76. ;------------------------------------------------------------------------------
  77.